home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / textual / tex / files / !preview / h / output < prev    next >
Encoding:
Text File  |  1990-07-24  |  408 b   |  19 lines

  1. /* output.h */
  2.  
  3. /* Needs <stdio.h>.  */
  4.  
  5. /* An OUTPUTTER is a function which can empty a buffer into some destination.
  6.    The stdio FWRITE is an example.  */
  7.  
  8. typedef size_t (*outputter)(const void *, size_t, size_t, FILE *);
  9.  
  10. extern void save_sprite_into_file (char *);
  11.  
  12. extern void save_drawfile_into_file (char *);
  13.  
  14. extern void output_saveas (char *);
  15.  
  16. extern void output_send (wimp_msgstr *);
  17.  
  18. /* EOF */
  19.